home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / chardet / eucjpprober.py < prev    next >
Text File  |  2006-10-21  |  4KB  |  86 lines

  1. ######################## BEGIN LICENSE BLOCK ########################
  2. # The Original Code is mozilla.org code.
  3. #
  4. # The Initial Developer of the Original Code is
  5. # Netscape Communications Corporation.
  6. # Portions created by the Initial Developer are Copyright (C) 1998
  7. # the Initial Developer. All Rights Reserved.
  8. #
  9. # Contributor(s):
  10. #   Mark Pilgrim - port to Python
  11. #
  12. # This library is free software; you can redistribute it and/or
  13. # modify it under the terms of the GNU Lesser General Public
  14. # License as published by the Free Software Foundation; either
  15. # version 2.1 of the License, or (at your option) any later version.
  16. # This library is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  19. # Lesser General Public License for more details.
  20. # You should have received a copy of the GNU Lesser General Public
  21. # License along with this library; if not, write to the Free Software
  22. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  23. # 02110-1301  USA
  24. ######################### END LICENSE BLOCK #########################
  25.  
  26. import constants, sys
  27. from constants import eStart, eError, eItsMe
  28. from mbcharsetprober import MultiByteCharSetProber
  29. from codingstatemachine import CodingStateMachine
  30. from chardistribution import EUCJPDistributionAnalysis
  31. from jpcntx import EUCJPContextAnalysis
  32. from mbcssm import EUCJPSMModel
  33.  
  34. class EUCJPProber(MultiByteCharSetProber):
  35.     def __init__(self):
  36.         MultiByteCharSetProber.__init__(self)
  37.         self._mCodingSM = CodingStateMachine(EUCJPSMModel)
  38.         self._mDistributionAnalyzer = EUCJPDistributionAnalysis()
  39.         self._mContextAnalyzer = EUCJPContextAnalysis()
  40.         self.reset()
  41.  
  42.     def reset(self):
  43.         MultiByteCharSetProber.reset(self)
  44.         self._mContextAnalyzer.reset()
  45.         
  46.     def get_charset_name(self):
  47.         return "EUC-JP"
  48.  
  49.     def feed(self, aBuf):
  50.         aLen = len(aBuf)
  51.         for i in range(0, aLen):
  52.             codingState = self._mCodingSM.next_state(aBuf[i])
  53.             if codingState == eError:
  54.                 if constants._debug:
  55.                     sys.stderr.write(self.get_charset_name() + ' prober hit error at byte ' + str(i) + '\n')
  56.                 self._mState = constants.eNotMe
  57.                 break
  58.             elif codingState == eItsMe:
  59.                 self._mState = constants.eFoundIt
  60.                 break
  61.             elif codingState == eStart:
  62.                 charLen = self._mCodingSM.get_current_charlen()
  63.                 if i == 0:
  64.                     self._mLastChar[1] = aBuf[0]
  65.                     self._mContextAnalyzer.feed(self._mLastChar, charLen)
  66.                     self._mDistributionAnalyzer.feed(self._mLastChar, charLen)
  67.                 else:
  68.                     self._mContextAnalyzer.feed(aBuf[i-1:i+1], charLen)
  69.                     self._mDistributionAnalyzer.feed(aBuf[i-1:i+1], charLen)
  70.                     
  71.         self._mLastChar[0] = aBuf[aLen - 1]
  72.         
  73.         if self.get_state() == constants.eDetecting:
  74.             if self._mContextAnalyzer.got_enough_data() and \
  75.                    (self.get_confidence() > constants.SHORTCUT_THRESHOLD):
  76.                 self._mState = constants.eFoundIt
  77.  
  78.         return self.get_state()
  79.  
  80.     def get_confidence(self):
  81.         contxtCf = self._mContextAnalyzer.get_confidence()
  82.         distribCf = self._mDistributionAnalyzer.get_confidence()
  83.         return max(contxtCf, distribCf)
  84.